type github.com/klauspost/compress/zstd.bestFastEncoder

6 uses

	github.com/klauspost/compress/zstd (current package)
		dict.go#L233: 	enc := encoder(&bestFastEncoder{fastBase: fastBase{maxMatchOff: int32(maxMatchLen), bufferReset: math.MaxInt32 - int32(maxMatchLen*2), lowMem: false}})
		enc_best.go#L69: type bestFastEncoder struct {
		enc_best.go#L78: func (e *bestFastEncoder) Encode(blk *blockEnc, src []byte) {
		enc_best.go#L471: func (e *bestFastEncoder) EncodeNoHist(blk *blockEnc, src []byte) {
		enc_best.go#L477: func (e *bestFastEncoder) Reset(d *dict, singleBlock bool) {
		encoder_options.go#L69: 		return &bestFastEncoder{fastBase: fastBase{maxMatchOff: int32(o.windowSize), bufferReset: math.MaxInt32 - int32(o.windowSize*2), lowMem: o.lowMem}}